home *** CD-ROM | disk | FTP | other *** search
/ Shareware Overload Trio 2 / Shareware Overload Trio Volume 2 (Chestnut CD-ROM).ISO / dir37 / icndos17.zip / ICONEDIT.DOC < prev    next >
Text File  |  1993-11-02  |  14KB  |  275 lines

  1.  
  2.  
  3.                                     ┌────┐
  4.                                  ┌──┴─┐┌─┴──┐
  5.                               ┌──┴─┐┌─┴┴─┐┌─┴──┐
  6.                            ┌──┴─┐┌─┴┴─┐┌─┴┴─┐┌─┴──┐
  7.                         ┌──┴─┐┌─┴┴─┐┌─┴┴─┐┌─┴┴─┐┌─┴──┐
  8.                         │    ├┤    ├┤    ├┤    ├┤    │
  9.                         └────┘└────┘└────┘└────┘└────┘
  10.                                     IconEDIT
  11.                                    ver. 1.2
  12.                           Copyright 1993, EFD Systems
  13.                                All Rights Reserved
  14.                         ┌────┐┌────┐┌────┐┌────┐┌────┐
  15.                         │    ├┤    ├┤    ├┤    ├┤    │
  16.                         └──┬─┘└─┬┬─┘└─┬┬─┘└─┬┬─┘└─┬──┘
  17.                            └──┬─┘└─┬┬─┘└─┬┬─┘└─┬──┘
  18.                               └──┬─┘└─┬┬─┘└─┬──┘
  19.                                  └──┬─┘└─┬──┘
  20.                                     └────┘
  21.  
  22.  
  23.  
  24.  
  25. ─────────────────────────────────────────────────────────────────────────────
  26.                          T A B L E  of  C O N T E N T S
  27.  
  28.  
  29.  Description  ----------------------------------------------------------- 3
  30.  
  31.  Installation and Startup  ---------------------------------------------- 4
  32.  
  33.  Building Menus  -------------------------------------------------------- 5
  34.  
  35.  Editing and Copying Icons  --------------------------------------------- 6
  36.  
  37.  Command Buttons  ------------------------------------------------------- 8
  38.  
  39.  How-To  ---------------------------------------------------------------- 9
  40.  
  41.  Mail Order  ------------------------------------------------------------ 11
  42.  
  43.  Maintenance Log  ------------------------------------------------------- 12
  44.  
  45.  
  46.  
  47.  
  48.  
  49. ───────────────────────────────────────────────────────────────────────────────
  50.                                   Description
  51.  
  52. IconEDIT is the graphical setup and maintenace utility for IconDOS. IconEDIT is
  53. used to build and edit icon menu files containing up to 32767 icons.  With
  54. IconEDIT you can draw your own icons from scratch or you can copy and modify any
  55. of the provided library icons.  At the same time, you can edit an icon's title
  56. and attach a DOS command string and password to the icon.
  57.  
  58. IconEDIT is almost totally mouse driven; therefore, a MicroSoft compatible mouse
  59. is required.  If a mouse driver is not present at startup, IconEDIT will abort
  60. with a short message.  IconEDIT also requires a VGA monitor (EGA will not work).
  61. This condition is also checked at startup.
  62.  
  63. IconDOS icons are always 32 by 32 pixels.  Wallpaper is also a 32 by 32 pixel
  64. graphic that is placed into a special file, PAPER.ICN, for display as a tiled
  65. backdrop pattern.  Therefore, IconEDIT does not make a distinction between icons
  66. and wallpaper and will edit either.  During editing, IconEDIT displays a normal
  67. and an expanded view of the icon.  Drawing with the mouse always takes place in
  68. the expanded view.
  69.  
  70. IconEDIT can now assign a 4 character password to an icon.  IconDOS requests the
  71. password before executing the icon's command string.  Passwords are case
  72. insensitive, i.e. caps and lower case are considered to be the same.
  73. ───────────────────────────────────────────────────────────────────────────────
  74.                             Installation and Startup
  75.  
  76. Installation is very easy.  Simply make a new directory and copy all of the
  77. IconDOS files to it.  If you insist, a batch file called INSTALL.BAT has been
  78. provided which will do this for you.  Change to the drive and directory where
  79. the IconDOS files are located and type:
  80.  
  81.                     INSTALL path   Example: INSTALL C:\MENU
  82.  
  83. To start IconEDIT, type:
  84.  
  85.                           ICONEDIT iconfile [buffile]
  86.  
  87. "iconfile" is the name of the file that you wish to edit.  The file will be
  88. created if it does not exist.  "buffile" is the name of an optional
  89. cut/copy/paste buffer file.  If "buffile" is not specified, IconEDIT will create
  90. and use a file called ICON.TMP.  The "buffile" is the key to copying and moving
  91. icons between files.  Try editing DEMO.MNU for practice.
  92.  
  93. NOTE: The buffer file grows in size with each CUT or COPY command.  ICON.TMP is
  94. never deleted or overwritten, only added to.  Therefore, you may wish to delete
  95. this file from time to time in order to prevent it from becoming excessively
  96. large.
  97. ───────────────────────────────────────────────────────────────────────────────
  98.                                  Building Menus
  99.  
  100. An icon menu file can be built by hand drawing icons using IconEDIT; however, it
  101. is easier and faster to copy icons from the provided icon library whenever
  102. possible.  Specific instructions for copying icons using IconEDIT are provided
  103. in the following section.  Icon titles, command strings and passwords can be
  104. attached to the icons.  Command strings are limited to 14 characters as imposed
  105. by the IBM keyboard buffer; therefore, the command string is normally used to
  106. call a batch file with a parameter.  The batch file actually contains the list
  107. of DOS commands needed to carry out specific icon actions.  A single batch file
  108. file can contain multiple sets of commands, one set for each icon in a menu.  In
  109. this case, an icon specific parameter should be included in the icon command
  110. string.  This parameter can be used inside the batch file to select the proper
  111. DOS command set.  RUN.BAT is a fully commented batch file which illustrates this
  112. technique.  This file can be modified for your own needs as desired.  This batch
  113. file is also used to make the menu system re-entrant by returning control to
  114. IconDOS after a command set has been executed.  Comments in RUN.BAT also
  115. illustrate this.
  116.  
  117. To allow IconDOS to operate from any directory, the batch file containing the
  118. DOS command sets should be located somewhere inside your DOS path.  IconDOS can
  119. be accessed from outside the IconDOS directory by specifying the full path for
  120. both IconDOS and menu file like this:  C:\MENU\ICONDOS C:\MENU\DEMO
  121. ───────────────────────────────────────────────────────────────────────────────
  122.                            Editing and Copying Icons
  123.  
  124. As noted earlier, IconDOS is mostly mouse driven.  Notes on-screen explain how
  125. the CTRL and ALT keys will modify certain mouse actions.  The keyboard is only
  126. used to enter and edit icon titles, command strings and passwords.
  127.  
  128. All drawing takes place in the expanded view of the icon.  Individual pixels are
  129. painted by clicking inside a pixel box.  Lines can be drawn by holding down a
  130. mouse button and moving the cursor.  A wide brush (3 X 3 pixels) is available
  131. for filling in larger regions by holding down the ALT key while drawing.
  132.  
  133. The left and right mouse buttons can be assigned drawing colors by clicking on
  134. the color bar.  To erase instead of draw, simply assign the background color to
  135. one of the buttons and draw over the area to be erased.
  136.  
  137. Note that you must explicitedly store your artwork to disk by clicking either
  138. the SAVE or APPEND command buttons; otherwise, your work will be lost when you
  139. leave IconEDIT or move to the next icon.
  140.  
  141. To edit a title, command string or password, click inside the labeled edit box.
  142. The mouse is disabled until editing is terminated by ENTER or ESC.  The box
  143. editor provides Insert and Overstrike modes toggled with INSERT.  Alt-C will
  144. clear the box, Alt-R will restore.  Home and End move to the box start/end.
  145. ───────────────────────────────────────────────────────────────────────────────
  146.                        Editing and Copying Icons (cont'd)
  147.  
  148. When building a menu, it is generally preferable to copy an icon from the
  149. provided library, ICON.LBR, instead of drawing your own icon from scratch.
  150.  
  151. To copy icons between files, start IconEDIT in the following manner:
  152.  
  153.                            ICONEDIT fromfile tofile
  154.  
  155. For example, to copy icons from ICON.LBR to MYMENU.MNU, start IconEDIT with:
  156.  
  157.                           ICONEDIT ICON.LBR MYMENU.MNU
  158.  
  159. Click on the small actual size icon (upper right) for a full screen display of
  160. the available icons.  The buttons at the extreme upper right are used to flip
  161. screens/pages.  Click the desired icon to bring it into the edit window.  Once
  162. the icon is in the edit window, click COPY to place a copy of the icon into
  163. MYMENU.MNU.  DO NOT use CUT unless you wish to remove the icon from ICON.LBR as
  164. it is being placed into MYMENU.MNU.  After you are finished copying icons, exit
  165. IconEDIT (click upper left button).  Now you are ready to edit your new menu
  166. file to add the necessary titles, commands and passwords by typing:
  167.  
  168.                                 ICONEDIT MYMENU
  169. ───────────────────────────────────────────────────────────────────────────────
  170.                                 Command Buttons
  171.  
  172. PREVIOUS - Move to the previous icon in the file.  Hold the Alt key to move in
  173.    steps of 5 icons.  Hold the Ctrl key to move to the start of the file.  The
  174.    current icon number and the total icon count are shown at the upper right.
  175. NEXT - Move to the next icon in the file.  Alt key moves by 5.  Ctrl key moves
  176.    to the end of the file.  When moving, the user is prompted to save the
  177.    current icon if it has been modified.
  178. CLEAR - Clears the icon to the mouse button color.  For example, to clear the
  179.    icon to solid red, assign red to one of the mouse buttons by clicking on the
  180.    color bar and then click CLEAR with the red mouse button.
  181. CUT - Removes the current icon from the file and places it in the buffer file.
  182.    The last icon in the file is moved to fill the current position and the total
  183.    icon count is reduced by 1.
  184. COPY - Copies the current icon to the buffer.  The current file is unchanged.
  185. PASTE - Copy the next icon from the buffer file and overwrite the current icon
  186.    display.  Only the screen display is overwritten, SAVE or APPEND must be used
  187.    to overwrite the icon on disk.  PASTE starts at the end of the buffer file
  188.    and progresses backward with each use in a Last-In-First-Out (LIFO) manner.
  189. APPEND - Adds the currently displayed icon to the end of the file. Increases the
  190.    total icon count by 1.
  191. SAVE - Overwrites the current icon on disk with the displayed icon.
  192. Exit - The window button in the extreme upper left of the screen exits IconEDIT.
  193. ───────────────────────────────────────────────────────────────────────────────
  194.                                      How-To
  195.  
  196. - Add a new icon to a file?
  197.  
  198. Draw or copy a new icon (using Copy or Paste as described above) at any location
  199. in the file.   With the icon is displayed, click the APPEND command button.  The
  200. icon, as currently displayed, will be appended to the end of the file. Ctrl-Next
  201. moves to the end of the file to view or edit the newly appended icon.
  202.  
  203. - View all of the icons in a file?
  204.  
  205. Click on the small actual size icon at the upper right. All icons in the current
  206. file are displayed on successive pages with 56 icons per page.  The buttons at
  207. the extreme upper right are used to flip pages.
  208.  
  209. - Setup a submenu?
  210.  
  211. Assign a submenu file name (.MNU extension required) to an icon in place of a
  212. DOS command string.  IconDOS recognizes that you want to load a sub-menu from
  213. this extension.  You may want to provide an icon in the submenu which re-loads
  214. the previous menu.  See DEMO.MNU and SUBDEMO.MNU for an example.  All menus and
  215. submenus should always be maintained in the same directory; otherwise, IconDOS
  216. may have trouble locating the files when needed.
  217. ───────────────────────────────────────────────────────────────────────────────
  218.                                 How-To (cont'd)
  219.  
  220. - Move icons within a file?
  221.  
  222. Delete the default buffer file, ICON.TMP.  Edit the file using the default
  223. buffer (don't specify a buffer file).   COPY all of the icons to be moved.
  224. PASTE the copied icons into new positions and SAVE, one at a time.
  225.  
  226. - Move icons between files?
  227.  
  228. The most direct way is to edit the file to be copied FROM while using the file
  229. to be copied TO as the cut/copy/paste buffer (see pg. 7).  Alternately, any
  230. icons copied from one file into the default buffer are available for pasting
  231. into any subsequent file being edited.  The default buffer is never deleted or
  232. overwritten, only added to.
  233.  
  234. - Edit or create new wallpaper?
  235.  
  236. Use IconEDIT to edit the wallpaper file, PAPER.ICN, in the same way that you
  237. edit a menu file.  As mentioned previously, icons and wallpaper are structurally
  238. identical. Wallpaper is just an icon that is in a special file.  You really
  239. should make a backup copy of PAPER.ICN before you start editing to avoid any
  240. possibility of mishaps.
  241. ───────────────────────────────────────────────────────────────────────────────
  242.                                    Mail Order
  243.  
  244. To use this software beyond a 30-day trial period requires the purchase of a
  245. license. A license can only be purchased by direct mail order from the author
  246. (just like in the old days with the Sears catalog).  See ORDER.FRM or send a
  247. check or money order for $25 US to:
  248.                                   EFD Systems
  249.                             304 Smokerise Circle SE
  250.                               Marietta, GA 30067                  CIS:72627,3026
  251.  
  252. As a minimum, licensed users will receive the following:
  253.  
  254. - The lastest licensed version of IconDOS including a library of at least 450
  255.   ready-to-use high quality icons and new wallpaper.
  256.  
  257. - A utility to display 16 color PCX files and capture icons from the screen.
  258.   Provides an indirect but workable path to convert Window's icons to IconDOS.
  259.   The icon library was converted from public domain Windows icons in this way.
  260.  
  261. - Information on upgrades and any new utilities not offered as shareware.
  262.   Registered users can upgrade to any later version for a $5 S & H fee.
  263.  
  264.  
  265. ───────────────────────────────────────────────────────────────────────────────
  266.                                 Maintenance Log
  267.  
  268. 1.0 - 1/8/93 (the King's birthday) Original release.
  269.  
  270. 1.1 - 1/21/93 Added password security.
  271.  
  272. 1.2 - 8/25/93 Added icon selection from page.
  273.  
  274. *** End of File ***
  275.